From 16a71776dbe7f6676704adae5c1d684163bbf960 Mon Sep 17 00:00:00 2001 From: Wolfram Sang Date: Thu, 25 Jun 2020 18:52:10 +0200 Subject: [PATCH] iwlwifi: yoyo: don't print failure if debug firmware is missing Origin: https://git.kernel.org/linus/3f4600de8c93917594a8b3c9ca713160ee4d563c Bug-Debian: https://bugs.debian.org/966218 Missing this firmware is not fatal, my wifi card still works. Even more, I couldn't find any documentation what it is or where to get it. So, I don't think the users should be notified if it is missing. If you browse the net, you see the message is present is in quite some logs. Better remove it. Signed-off-by: Wolfram Sang Signed-off-by: Kalle Valo Link: https://lore.kernel.org/r/20200625165210.14904-1-wsa@kernel.org Gbp-Pq: Topic bugfix/all Gbp-Pq: Name iwlwifi-yoyo-don-t-print-failure-if-debug-firmware-i.patch --- drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c b/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c index 27116c7d3f4..9ce7207d9ec 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c +++ b/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c @@ -480,7 +480,7 @@ void iwl_dbg_tlv_load_bin(struct device *dev, struct iwl_trans *trans) if (!iwlwifi_mod_params.enable_ini) return; - res = request_firmware(&fw, "iwl-debug-yoyo.bin", dev); + res = firmware_request_nowarn(&fw, "iwl-debug-yoyo.bin", dev); if (res) return; -- 2.30.2